std::array::data
From Cppreference
| C++ Standard Library | |||||||||||||||||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| |||||||||||||||||||||||||||||||||||||||||||||||||||||
| Containers library | |||||||||||||||||||||||||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||||||||||||||||||||||||
| std::array | |||||||||||||||||||||||||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||||||||||||||||||||||||
| T* data();
| (C++0x feature) | |
| const T* data() const;
| (C++0x feature) | |
Returns pointer to the underlying array serving as element storage. Specifically the pointer is such that range [data(); data() + size()) is a valid.
Contents |
Parameters
(none)
Return value
pointer to the underlying element storage.
Complexity
constant.
See also
| access the first element (public member function) | |
| access the last element (public member function) | |